home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / paint.zip / README < prev    next >
Text File  |  1987-11-18  |  3KB  |  75 lines

  1.                 PAINT
  2.  
  3.         A Printer-Art Editor for the PC
  4.  
  5.             by Dave Tutelman
  6.  
  7.  
  8. This program, written in Turbo Pascal Version 1.0 (yup, real old),
  9. is a screen-based editor for generating "printer art" on a line printer.
  10. You use the program to generate or edit an on-screen, shaded-pixel
  11. representation of a printer page (80 x 66).  You can then send a text
  12. version to the printer, or to a .LST file for later printing.  The text
  13. version substitutes printable ASCII characters (of greater or lesser
  14. density) for the shaded pixels.
  15.  
  16. Included in this distribution is:
  17.     README        This file.
  18.     PAINT.PAS    The main Pascal file.
  19.     PIXEL.PAS    "Included" file of Pascal graphics routines.
  20.     PTUTILS.PAS    "Included" Pascal file.
  21.     PTFILE.PAS    ditto
  22.     PTFANCY.PAS    ditto
  23.     *.PIC        A number of encoded (source) pictures for PAINT.
  24.     *.LST        Printer-ready pictures for PAINT.
  25.  
  26. The program can be used either from the Turbo Pascal integrated environment
  27. or from the command line (as a .COM file).
  28.  
  29.  
  30. INSTRUCTIONS
  31.  
  32. The PAINT screen consists of a "page area" of 66 x 80 "shaded pixels",
  33. and a "command menu area".
  34.  
  35. To use the PAGE AREA:
  36.    -    The fast-blinking cursor is a "brush", one print-position in size.
  37.    -    The brush can be moved in EIGHT directions, not just 4.  The
  38.     cursor keys control horizontal and vertical movement; the other
  39.     keys on the cursor keypad control diagonal movement.  (E.g. -
  40.     the "Home" key moves the cursor up/left one position.)
  41.    -    The brush can take one of 6 values:
  42.         0    Neutral, or no-change.
  43.         1    Blank.
  44.         2    Light.
  45.         3    Medium.
  46.         4    Darker.
  47.         5    Darkest.
  48.     You can set the brush value by pressing a numeric key 0-5.
  49.    -    As the brush is moved around in the page area, it paints its value
  50.     on each print position it visits.  (If its value is zero, the
  51.     brush leaves print positions unchanged.)
  52.    -    Use the above instructions to paint a picture in the page area.
  53.     (You can also use some fancier constructs from the command menu,
  54.     like "mirror" and "fill".)
  55.  
  56. To use the COMMAND MENU:
  57.    -    A command is selected by pressing the key corresponding to the
  58.     capitalized letter in the menu.
  59.    -    You are prompted for a confirmation and/or further information.
  60.    -    In the "Fill" command, "darker" refers to the shade on the PRINT,
  61.     not on the SCREEN.
  62.    -    In the "Print" command, the default is to scroll the ASCII-text
  63.     picture to the PC screen (CON:).  You can also send it to a file
  64.     of arbitrary name, or to the printer (PRN:).
  65.    -    The "Save" and "Load" commands deal with a "live" (editable)
  66.     version of the picture, not a print-ready version.  However, it
  67.     too is legal ASCII text, not a [more efficient] binary
  68.     representation.
  69.  
  70. I encourage you to play with the features for a few minutes before using
  71. them on a "real" picture.
  72.  
  73.                     Dave Tutelman
  74.                     November 2, 1987
  75.